board: a bare list lines up with the rest of the page - #273
Merged
Jammy2211 merged 1 commit intoAug 24, 2026
Conversation
The last odd thing on a phone: the Heart board's evidence-gap bullets sat
inset from everything around them. The cause is the UA stylesheet's 40px list
indent, which nothing here overrode — measured at a 390px viewport, the lede,
the heading, the hint and the table all began at x=16 and the three bullets
began at x=56, so the block read as a stray column stepped in from the page.
`ul,ol{padding-left:1.15rem}` puts the marker just inside the body margin
instead: bullets at x=34, and the text of each item gains the 22px back
(318px -> 340px on a 390px screen). The lists that are layout rather than
prose — `.stats`, `.boards`, the Heart's own `ul.det` — set their own padding
and win on specificity, so none of them moves.
476 tests pass, one new. No board's own code changes: this is the shared
sheet, so every page picks it up on its next render.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01VhpLPmmoSFAtVpppG8azVA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The last odd thing on a phone: the Heart board's evidence-gap bullets sat inset from everything around them.
The cause
The UA stylesheet's 40px list indent, which nothing here overrode. Measured at a 390px viewport:
Every other block began at the 16px body margin and the three bullets began at 56 — a stray column stepped in from the page.
The change
ul,ol{padding-left:1.15rem}puts the marker just inside the body margin instead: bullets at x=34, and each item's text gains the 22px back (318px → 340px).The lists that are layout rather than prose —
.stats,.boards, and the Heart board's ownul.det— set their own padding and win on specificity, so none of them moves. Verified: the Mind dashboard and the Brain board contain no bare<ul>at all (only.statsand.boards), so this is visible only where a board writes prose lists.Tests
476 pass, one new — the default, plus a check that the two layout lists keep their zero.
No board's own code changes: this is the shared sheet, so every page picks it up on its next render.
Generated by Claude Code